home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3.2 / Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO / tcp / ax25 / jalocha.msg < prev    next >
Text File  |  1992-05-19  |  2KB  |  58 lines

  1. This is a response on a query regarding use of the driver with the PMP
  2. modem.    The I/O assignments in the driver are compatible with the modem
  3. used with the Baycom package which interfaces through the modem control
  4. lines of a PC serial port.  The PMP modem interfaces through the printer
  5. port when used with the PMP S/W but can be rewired to the serial port
  6. for use with this driver.  The BAYCOM doc is a good source for more info.
  7.  
  8.                                  73 KE6HA
  9.  
  10. Subj:    AX25 driver and PMP modem
  11. Return-Path: <JALOCHA@vsk01.ifj.edu.pl>
  12. Date: Wed, 22 Apr 1992 11:58 GMT+1
  13. From: JALOCHA@vsk01.ifj.edu.pl
  14. Subject: AX25 driver and PMP modem
  15.  
  16. I just uploaded a bit "improved version" of the ax25 driver to ucsd.edu
  17. in /hamradio/packet/tcpip/incoming directory. File name is ax25drv.lzh.
  18.  
  19. PMP modem should cooperate properly. In fact _any_ modem would do the job
  20. if it meets some minimal requirements. Basic rules are:
  21. 1. The modem should provide decoded received data on CTS pin.
  22. 2. The driver outputs data to be transmitted on DTR pin.
  23.    Modem should modulate and pass this signal to the radio.
  24. 3. Pin RTS controls the PTT of the radio. When it becomes positive
  25.    the radio (together with the modem) should go into transmition mode.
  26. 4. Optionally the modem may provide carrier detect signal
  27.    on DCD pin.
  28.  
  29. The problem with most modems is level conversion... RS232 ports
  30. of a PC use +/- 12 V while most modems need TTl levels (0..+5V).
  31. The simple (but not very elegant) way of doing conversion is to use
  32. CMOS inverters (I use 4049 with my TCM3105). Like on the picture below:
  33.  
  34.  
  35.                 _____    |\
  36. RS232 output --|_____|---| \o_____ TTL modem input
  37.              50 or 100 K | /
  38.                          |/
  39.  
  40.                 _____     /|
  41. RS232 input ---|_____|--o/ |_______ TTL modem output
  42.                2.2 K     \ |
  43.                           \|
  44.  
  45. Inverters are supplied from 0 and +5 Volts - same levels as the modem.
  46.  
  47. The first scheme _does_ work because CMOS inputs accept voltages outside
  48. power supply range thanks to input protective diodes.
  49. The resistor limits the current flowing through the diodes.
  50. You must _not_ avoid it !
  51.  
  52. The second scheme does work as well because the threshold between
  53. logical states in PC's RS232 is a bit _above_ 0 Volts.
  54.  
  55.     Hope it helps.
  56.  
  57.             Pawel
  58.